@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita‌​lic,400italic,500,500italic,700,700italic,900italic,900);

html,
body,
html * {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

:root {
  --mainColor: #000000;
  --primaryColor: #95c11f;
  --secondaryColor: #ededed;
  --darkColor: #005255;
  --borderColor: #000000;
  --logo: 'https://testing.app.ironchip.com/img/logo2.b687836c.svg';
  --logoWidth: 200px;
  --logoHeight: 50px;
  --windowHeight: calc((100vh - 56px) + 1px);
}

body {
  overflow: hidden;
  padding-top: 64px;
  background-color: rgb(243, 243, 243);
}

.breadcrumb-item a {
  color: var(--primaryColor);
  text-decoration: none;
  background-color: transparent;
}

.sideBar a {
  color: grey !important;
  text-decoration: none !important;
  background-color: transparent !important;
}

.dropdown-btn {
  cursor: pointer;
}

.dropdown-btn:hover {
  color: var(--primaryColor) !important;
}

.fa-caret-down {
  float: right;
  padding-right: 18px;
}

.text-ironchip,
.text-ironchip span {
  color: var(--primaryColor) !important;
}

.text-ironchip-dark {
  color: var(--darkColor) !important;
}

.text-listing {
  font-weight: 500;
  color: #c1c1c1 !important;
}

.dropdown-container {
  display: none;
  padding-left: 8px;
}

#sidebar .dropdown-btn.active {
  color: var(--primaryColor) !important;
}

.btn-ironchip {
  color: #fff;
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.btn:hover {
  color: var(--primaryColor);
  text-decoration: none;
  background-color: white;
}

#header-content {
  position: absolute;
  bottom: 0;
  left: 0;
}

.adaptive-height {
  height: var(--windowHeight);
}

.sideBar a:hover {
  color: var(--primaryColor) !important;
  text-decoration: none !important;
  font-size: large;
}

/* .fa-solid:hover {
  color: var(--primaryColor) !important;
  text-decoration: none !important;
}

.fa-solid::before {
  color: var(--primaryColor) !important;
  text-decoration: none !important;
} */

.bg-white {
  background-color: white !important;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 1.25em !important;
  vertical-align: -0.0667em;
}

/* HR */

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* SIDEBAR */

.sidebar.collapse.show,
.sidebar.collapse.show + .col {
  transition: 0.18s linear;
  left: 0;
}

.sidebar.collapse,
.sidebar.collapsing,
.sidebar.collapsing + .col {
  transition: 0.18s linear;
  left: -25%;
  height: auto !important;
}

#logo {
  height: var(--logoHeight);
}

.btn-outline-configuration {
  color: white;
  background-color: transparent;
  background-image: none;
  border-color: white;
}

.menu-size {
  height: 7vh;
}

.login-box-size {
  padding: 10px 25px 0px 25px;
  height: 87vh !important;
}

.login_structure {
  margin-top: 14vh;
}

.services-structure {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 55vh;
  height: fit-content;
}

.form-data-size {
  width: 90%;
}

.new-service-structure {
  margin-top: 20vh;
}

/*SNACKBAR*/

#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/* PLACE HOLDER */

.ph-center {
  text-align: center;
  text-align-last: center;
}

.navbar-position {
  z-index: 1;
}

.background-card-color {
  background-color: var(--mainColor);
}

.header-background {
  background-color: var(--mainColor);
}

.header-size {
  height: 7vh;
}

.ironchip-logo {
  color: white;
}

#ironchip-img {
  width: 100px;
  height: 50px;
}

.footer-row {
  height: 6vh;
  background-color: black;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.desk-size {
  height: 87vh;
}

.navbar-light .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.btn-outline-secondary-color {
  background-color: var(--mainColor);
  border-radius: 3px;
  min-width: 220px;
  height: 64px;
  font-size: 16px;
  border-color: var(--mainColor);
  color: white;
}

.btn-outline-secondary-color:hover {
  color: white;
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.btn-outline-next-color {
  background-color: var(--mainColor);
  border-radius: 3px;
  font-size: 16px;
  border-color: var(--mainColor);
  color: white;
}

.btn-outline-next-color:hover {
  color: white;
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.card-body-success {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.btn-colors {
  background-color: var(--mainColor);
  float: right;
  border-color: var(--mainColor);
  color: white;
}

.btn-colors:hover {
  background-color: var(--secondaryColor);
  float: right;
  border-color: var(--secondaryColor);
  color: white;
}

.btn-login-size {
  height: 40%;
  width: 100%;
}

.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}

.login-structure {
  padding-top: 3vh;
  height: 8vh;
  align-content: bottom;
  text-align: center;
}

.login-card-size {
  padding-top: 3vh;
  height: 79vh;
}

.configuration-structure {
  margin-top: 3vh;
}

.configuration {
  height: 87vh;
  overflow-y: auto;
  max-height: 87vh;
  height: fit-content;
}

.bg-light {
  background-color: #5b87da !important;
  background: #5b87da none repeat scroll 0 0;
  height: 40px;
}

.icon-style {
  font-size: 40px;
  color: var(--mainColor);
}

.secondary-icon-style {
  font-size: 24px;
  color: var(--mainColor);
}

.accounts-icon {
  font-size: 20px;
  color: var(--mainColor);
}

.configuration-box-size {
  height: 87vh;
}

.accounts-size {
  overflow-y: auto;
  max-height: 35vh;
  height: fit-content;
}

.modal {
  display: none;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Success page */

.score-text {
  font-weight: 500;
  font-size: 35px;
  color: var(--mainColor) !important;
}

.welcome-text {
  color: var(--mainColor) !important;
  font-size: 25px;
}

/* Modal Content */

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.overflow {
  overflow-y: hidden;
}

#dynamic-table {
  position: absolute;
  width: 90%;
  overflow-x: auto;
  top: 20px;
  padding-left: -5px;
  padding-right: 2px;
  visibility: hidden;
}

.loader {
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 75px;
  height: 75px;
  border: 10px solid var(--mainColor);
  border-radius: 50%;
  border-top-color: var(--secondaryColor);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.white {
  color: white !important;
}

.navbar-light .navbar-nav .active > .nav-link {
  color: white;
}

.navbar-light .navbar-nav .nav-link {
  color: white;
}

ul li .nav-link a:hover {
  text-decoration: underline;
}

.card {
  margin: 0 auto;
  /* Added */
  float: none;
  /* Added */
  margin-bottom: 10px;
  /* Added */
  border: none;
}

.t-head {
  background-color: var(--mainColor);
  color: var(--secondaryColor);
}

.my-custom-scrollbar {
  margin-top: 30px;
  position: relative;
  height: auto;
  overflow: auto;
}

.table-wrapper-scroll-y {
  display: block;
}

thead tr th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--mainColor);
}

.success-background {
  background-color: white;
}

input[type='search']:focus {
  outline: none !important;
  border: 2px solid rgb(204, 204, 204);
  box-shadow: 0 0 4px #c9c9c9;
}

/*DASHBOARD PAGE STYLES*/

#dashboardTable th {
  padding: 5px;
  background-color: white;
  color: #000000;
}

#dashboardTable td {
  padding: 5px;
}

#dashboardTable tbody tr:nth-of-type(odd) {
  background-color: #eeeeee;
}

#dashboardTable_info,
#dashboardTable_paginate,
#dashboardTable_filter,
#dashboardTable_length {
  display: none;
}

#threatMap {
  height: 265px;
}

/*REPORT DETAIL STYLES*/

.shadow {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12) !important;
}

.badge-red {
  background-color: rgb(255, 222, 222);
  color: rgb(255, 0, 0);
  font-weight: 500;
  /* border-color: rgb(255, 0, 0);
  border-style: solid;
  border-width: 2px; */
}

.badge-green {
  background-color: rgb(225, 255, 229);
  color: rgb(18, 201, 2);
  font-weight: 500;
  /* border-color: rgb(0, 165, 8);
  border-style: solid;
  border-width: 2px; */
}

.badge-orange {
  background-color: rgb(255, 237, 211);
  color: rgb(245, 147, 0);
  font-weight: 500;
  /* border-color: rgb(245, 147, 0);
  border-style: solid;
  border-width: 2px; */
}

.badge-yellow {
  background-color: rgb(249, 255, 211);
  color: rgb(243, 219, 8);
  font-weight: 500;
  /* border-color: rgb(243, 219, 8);
  border-style: solid;
  border-width: 2px; */
}

.badge-grey {
  background-color: rgb(232, 232, 232);
  color: rgb(118, 118, 118);
  font-weight: 500;
  /* border-color: rgb(118, 118, 118);
  border-style: solid;
  border-width: 2px; */
}

.counter-red {
  background-color: rgb(255, 0, 0);
  font-size: 8px;
}

.counter-orange {
  background-color: rgb(245, 147, 0);
  font-size: 8px;
}

.counter-yellow {
  background-color: rgb(243, 219, 8);
  font-size: 8px;
}

.counter-green {
  background-color: rgb(18, 201, 2);
  font-size: 8px;
}

.counter-grey {
  background-color: rgb(223, 223, 223);
  font-size: 8px;
}

.bg-lightgrey {
  background-color: rgb(223, 223, 223);
}

.bg-xtralightgrey {
  background-color: rgb(243, 243, 243);
}

.line {
  padding-top: 15px;
  padding-bottom: 5px;
  display: block;
}

.input-group-addon {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #495057;
  text-align: center;
  background-color: #e9ecef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.input-group-btn {
  white-space: nowrap;
  vertical-align: middle;
  padding-right: 3px;
}

.input-group-addon {
  white-space: nowrap;
  vertical-align: middle;
  color: var(--primaryColor);
}

.input-group-addon a {
  color: var(--primaryColor);
  padding: 3px;
}

.list-group-item-action .active {
  color: var(--primaryColor);
}

code {
  color: #007bff;
}

.navbar-custom-color {
  color: var(--mainColor);
}

.navbar-custom .nav-item.nav-link.active {
  background-color: var(--mainColor);
}

.navbar-custom-color:hover {
  color: black;
}

.right-border {
  border-right: solid 1px rgb(216, 216, 216);
}

.bottom-border {
  border-bottom: solid 1px rgb(233, 233, 233);
  padding-bottom: 25px;
}

.bottom-border-clear {
  border-bottom: solid 1px rgb(233, 233, 233);
  padding-bottom: 15px;
}

.reduced-line-height {
  line-height: 18px;
  display: block;
}

.floater {
  filter: drop-shadow(0px 2px 2px #666666);
  transition: all 0.3s 0.1s ease-in-out;
  z-index: 9999;
  position: absolute;
  width: 500px;
  height: 500px;
  left: -300px;
  top: 0%;
  transform: translate(0%, -98%);
}

.floater2 {
  filter: drop-shadow(0px 2px 2px #666666);
  transition: all 0.3s 0.1s ease-in-out;
  z-index: 9999;
  position: absolute;
  width: 500px;
  height: 500px;
  left: 128px;
  top: 100px;
  transform: translate(0%, -98%);
}

#deviceHistoryContent {
  height: auto;
  opacity: 0;
  display: none;
}

#deviceHistoryContent:hover {
  opacity: 1;
  display: initial;
}

#deviceHistoryTrigger {
  cursor: pointer;
}

#deviceHistoryTrigger:hover ~ #deviceHistoryContent {
  height: auto;
  opacity: 1;
  display: initial;
}

#threatMap2 {
  height: 100%;
}

#threatMap2:hover {
  height: 100%;
  transform: scale(1.7) translateX(-56px) translatey(-15px);
  filter: drop-shadow(0px 2px 2px #666666);
}

/* The customcheck */

.customcheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.customcheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;
}

.customcheck:hover input ~ .checkmark {
  background-color: #ccc;
}

.customcheck input:checked ~ .checkmark {
  background-color: #02cf32;
  border-radius: 5px;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.customcheck input:checked ~ .checkmark:after {
  display: block;
}

.customcheck .checkmark:after {
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ui-w-80 {
  width: 80px !important;
  height: auto;
}

.btn-default {
  border-color: rgba(24, 28, 33, 0.1);
  background: rgba(0, 0, 0, 0);
  color: #4e5155;
}

label.btn {
  margin-bottom: 0;
}

.btn-outline-primary {
  border-color: #26b4ff;
  background: transparent;
  color: #26b4ff;
}

.btn {
  cursor: pointer;
}

.text-light {
  color: #babbbc !important;
}

.card {
  background-clip: padding-box;
  box-shadow: 0 1px 4px rgba(24, 28, 33, 0.012);
}

.row-bordered {
  overflow: hidden;
}

.account-settings-fileinput {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.account-settings-links .list-group-item.active {
  font-weight: bold !important;
}

html:not(.dark-style) .account-settings-links .list-group-item.active {
  background: transparent !important;
}

.account-settings-multiselect ~ .select2-container {
  width: 100% !important;
}

.light-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(24, 28, 33, 0.03) !important;
}

.light-style .account-settings-links .list-group-item.active {
  color: #4e5155 !important;
}

.material-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(24, 28, 33, 0.03) !important;
}

.material-style .account-settings-links .list-group-item.active {
  color: #4e5155 !important;
}

.dark-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.03) !important;
}

.dark-style .account-settings-links .list-group-item.active {
  color: #fff !important;
}

.light-style .account-settings-links .list-group-item.active {
  color: #4e5155 !important;
}

.light-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(24, 28, 33, 0.03) !important;
}

.btn-danger {
  color: #fff;
  background-color: #ca2c3c;
  border-color: #ca2c3c;
}

.btn-danger:hover {
  color: #ca2c3c;
  background-color: white;
  border-color: #ca2c3c;
}

/*CUSTOM RULES PAGE STYLES*/

.active .bs-stepper-circle {
  background-color: var(--primaryColor) !important;
}

.bs-stepper .step-trigger:focus {
  color: var(--primaryColor) !important;
  outline: 0;
}

.reportDetailsHeader{
  background-color: var(--darkColor) !important;
}
